home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Freeware 1999 August
/
SGI Freeware 1999 August.iso
/
dist
/
fw_netpbm.idb
/
usr
/
freeware
/
bin
/
pnmsmooth.z
/
pnmsmooth
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1998-10-28
|
257 b
|
21 lines
#!/bin/sh
#
# pnmsmooth - smooth out an image by replacing each xel with the
# average of its nine immediate neighbors
tmp=/tmp/psm.$$
rm -f $tmp
cat > $tmp << MOO
P2
3 3
18
10 10 10
10 10 10
10 10 10
MOO
pnmconvol $tmp ${1+"$@"}
rm -f $tmp